home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_10_04
/
1004110a
< prev
next >
Wrap
Text File
|
1992-02-08
|
496b
|
27 lines
Listing 8
********
int find_maximum(one, two, three)
int one, two, three;
{
int ret;
if (one > two)
if (one > three)
{
ret = one;
goto end;
}
else
{
ret = three;
goto end;
}
...
end:
printf("find_maximum returning %d", ret);
return ret;
}
*******